@charset "UTF-8";
/* CSS Document */

.section-top{
  background-image: url("../images/second_top-bg.jpg");
  background-position: right 40% bottom 25% ;
  background-color: rgba(255,255,255,0.6);
  background-blend-mode: lighten;
  height: 260px;
  width: 100%;
  margin-bottom: 200px;
}
.section-top h2{
  font-size: 4.0rem;
  padding: 70px 0 0;
  border-bottom: 2px solid #ff9f1c;
  padding-bottom: 30px;
  width: 200px;
  margin: 0 auto 20px;
}
.section-top p{
  font-size: 2.0rem;
}
.fadeIn {
	opacity: 0;
	animation-name: fadeIn;
	animation-duration: 4s;
	animation-timing-function: ease;
	animation-delay: .25s;
	animation-fill-mode: forwards;
}
@keyframes fadeIn{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.car{
  padding: 0 25px;
}
.car h2{
  display: inline-block;
  position: relative;
  font-size: 3.0rem;
  line-height: 3.6rem;
  padding: 0 0 10px;
  
}
.car h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  display: inline-block;
  width: 50px;
  height: 3px;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
  background-color: #05668d; /*下線の色*/
}
.small{
  margin-top: 80px;
  font-size: 2.5rem;
  position: relative;
  
}
.small:before{
  display: block;
  content: "";
  position: absolute;
  left: 30%;
  top: 35%;
  width: 1.1rem;
  height: 1.1rem;
  background: #ff9f1c;
}
.semi{
   margin-top: 80px;
  font-size: 2.5rem;
  position: relative;
}
.semi:before{
  display: block;
  content: "";
  position: absolute;
  left:25%;
  top: 33%;
  width: 1.1rem;
  height: 1.1rem;
  background: #ff9f1c;
}
.number img{
  width: 100%;
  padding-bottom: 20px;
  margin-top: 100px;
}
.car_taitl{
  padding-bottom: 40px;
}
.original-button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ff9f1c;
  font-size: 2rem;
  border-radius: 0px;
  width: 200px;
  height: 40px;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  margin: 0 auto 40px;
}

.original-button::before, .original-button::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: #ff9f1c;
  transition: .3s;
}

.original-button::before {
  top: 0;
}

.original-button::after {
  bottom: 0;
}

.original-button:hover::before {
  transform: translateX(-100%);
}

.original-button:hover::after {
  transform: translateX(100%);
}
.line{
  display: flex;
  border-bottom: 1px solid #ff9f1c;
  padding: 10px 0;
}
.left{
  width: 115px;
  text-align: left;
  margin-right: 20px;
}
/*PC*/
@media(min-width: 1160px){
  .car{
    padding: 0 120px;
  }
  .small{
  margin-top: 80px;
  font-size: 2.5rem;
  position: relative;
  
  }
.small:before{
  display: block;
  content: "";
  position: absolute;
  left: 43%;
  top: 35%;
  width: 1.1rem;
  height: 1.1rem;
  background: #ff9f1c;
  }
  .semi{
  margin-top: 80px;
  font-size: 2.5rem;
  position: relative;
  
  }
.semi:before{
  display: block;
  content: "";
  position: absolute;
  left: 40%;
  top: 35%;
  width: 1.1rem;
  height: 1.1rem;
  background: #ff9f1c;
  }
  .number{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 100px;
  }
  .number img{
    margin-top: 0;
    padding-top: 10px;
  }
  .number_img{
    width: 50%;
    padding: 0 50px;
  }
  .list{
    width: 50%;
    padding: 0 80px;
  }
}







